/* Call-to-Action Section */
.loan-cta {
  background: #1d4ed8; /* Blue */
  color: #fff;
  border-radius: 18px;
  padding: 60px 25px;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.loan-cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color:white;
}

.loan-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e0e7ff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* Primary Button */
.btn-primary2 {
  background: #fff;
  color: #1d4ed8;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary2:hover {
  background: #f1f5f9;
}

/* Outline Button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Contact Info */
.cta-contact {
  font-size: 15px;
  color: #f0f4ff;
  margin-top: 20px;
}

.cta-contact i {
  margin-right: 6px;
  color: #facc15; /* goldish icons */
}

/* Responsive */
@media (max-width: 768px) {
  .loan-cta {
    padding: 40px 18px;
  }

  .loan-cta-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .loan-cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }
}


